home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11tl.lha / lbl / xview / hview / makefile.src < prev    next >
Encoding:
Makefile  |  1993-03-12  |  631 b   |  42 lines

  1. #
  2. # makefile for user-contributed/lbl/xview/hview
  3. #
  4.  
  5. PGMS = hview.out
  6.  
  7. CPPFLAGS2 = -I$(XVIEWHOME)/include 
  8. #CFLAGS += -Bstatic
  9. LDFLAGS2 = -L$(XVIEWHOME)/lib
  10. LIBRARIES2 = -lxcolor
  11.  
  12. LINTFLAGS  = -h -target=$(MACHINE)
  13.  
  14. OBJECTS = hview.o hview_ui.o procs.o 24to8.o
  15.  
  16. .c.o:
  17.     $(COMPILEc) $< $(CPPFLAGS2)
  18.  
  19. install:    $(PGMS)
  20.  
  21. clean:    clean-pgm
  22. clean-all:    clean_all
  23.  
  24. man:
  25.  
  26. doc:
  27.  
  28. pristine:    pristine-pgm
  29.  
  30. hview.out:    $(OBJECTS)
  31.     $(LINKc) $* $(OBJECTS) $(LIBRARIES) $(LIBRARIES2) $(LDFLAGS2) $(LIBXVIEW)
  32.     mv $* $(DESTDIR)
  33.     @touch $@
  34.  
  35. FRC:
  36.  
  37. lint:
  38.     lint $(LINTFLAGS) $(SOURCESc)
  39.  
  40. #%_ui.c + %_ui.h + %_stubs.c + %.info: %.G
  41. #    $(GUIDEHOME)/bin/gxv $*
  42.